Version

MergeDelegate<T1,T2,T3,T4,T5,TResult> Delegate

Custom deletage used to pass information in the MergedDataContext.
Syntax
'Declaration
 
Public Delegate Function MergeDelegate
    (Of T1,T2,T3,T4,T5,TResult)( _
   ByVal in1 As T1, _
   ByVal in2 As T2, _
   ByVal in3 As T3, _
   ByVal in4 As T4, _
   ByVal in5 As T5 _
) As TResult
public delegate TResult MergeDelegate<T1,T2,T3,T4,T5,TResult>( 
   T1 in1,
   T2 in2,
   T3 in3,
   T4 in4,
   T5 in5
)

Parameters

in1
in2
in3
in4
in5

Type Parameters

T1
T2
T3
T4
T5
TResult
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also